home *** CD-ROM | disk | FTP | other *** search
/ Amiga Magazin: Amiga-CD 1997 September & October / Amiga-CD 1997 #9-10.iso / software / arteffect2.demo / rexx / help.rexx < prev    next >
OS/2 REXX Batch file  |  1997-04-11  |  406b  |  25 lines

  1. /*
  2.     list all commands and their templates
  3.  */
  4.  
  5. options results
  6.  
  7. address "ArtEffect"
  8.  
  9. /* request commandlist */
  10. help STEM me.
  11.  
  12. do i=0 to me.commandlist.count-1
  13.     help command me.commandlist.i
  14.     say "Command" i+1 || ": " || result
  15. end
  16.  
  17. help STEM me. pluginlist
  18.  
  19. do i=0 to me.commandlist.count-1
  20.     print = "PlugIn " i+1 || ": " || me.commandlist.i
  21.     help plugin me.commandlist.i
  22.     say print || ": " || result
  23. end
  24.  
  25.